home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strncmp.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  63 lines

  1. /* 
  2.  * strncmp.c --
  3.  *
  4.  *    Source code for the "strncmp" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strncmp.c,v 1.3 92/03/27 13:30:04 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strncmp --
  26.  *
  27.  *    Compares two strings lexicographically.
  28.  *
  29.  * Results:
  30.  *    The return value is 0 if the strings are identical in their
  31.  *    first s1 characters.  If they differ in their first s1
  32.  *    characters, then the return value is 1 if the first string is
  33.  *    greater than the second, and -1 if the second string is less
  34.  *    than the first.  If one string is a prefix of the other then
  35.  *    it is considered to be less (the terminating zero byte participates
  36.  *    in the comparison).
  37.  *
  38.  * Side effects:
  39.  *    None.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. int
  45. strncmp(s1, s2, numChars)
  46.     register char *s1, *s2;        /* Strings to compare. */
  47.     register int numChars;        /* Max number of chars to compare. */
  48. {
  49.     register char c1, c2;
  50.  
  51.     for ( ; numChars > 0; --numChars) {
  52.     c1 = *s1++;
  53.     c2 = *s2++;
  54.     if (c1 != c2) {
  55.         return c1 - c2;
  56.     }
  57.     if (c1 == '\0') {
  58.         return 0;
  59.     }
  60.     }
  61.     return 0;
  62. }
  63.